home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / System / Sample 2.4 Think C distribution / gff.h < prev    next >
Text File  |  1990-07-09  |  653b  |  20 lines

  1. /*______________________________________________________________________
  2.  
  3.     gff.h - Get File or Folder Module Interface.
  4.     
  5.     Copyright © 1988, 1989, 1990 Northwestern University.  Permission is granted
  6.     to use this code in your own projects, provided you give credit to both
  7.     John Norstad and Northwestern University in your about box or document.
  8. _____________________________________________________________________*/
  9.  
  10. #ifndef __gff__
  11. #define __gff__
  12.  
  13. typedef FilterProc FileFilterProcPtr;
  14.  
  15. extern void gff_Get (Point *where, Str255 *prompt, FileFilterProcPtr fileFilter, 
  16.     short numTypes, SFTypeList *typeList, SFReply *reply, 
  17.     short dlgID);
  18.     
  19. #endif
  20.